Simple pointer concept. 
Output?
void main (){
      int i=0;
       int *ptr;
       ptr=&i;
       printf("%d", *ptr);
}

Posted on by